
/*弹出询问提示框 */
.mask{width: 100vw;height: 100vh;position: fixed;z-index: 99;background: rgba(0, 0, 0, 0.4);top: 0;left: 0; display: flex;align-items: center;justify-content: center;}
.pop-up{width: 200px;min-height: 102px;position: relative;background: #ffffff;border-radius: 5px;padding: 10px;}
.pop-title{display: flex;align-items: center;justify-content: center;height: 26px;width: 200px;}
.pop-title p{font-size: 15px;color: #333;}
.pop-content{display: flex;align-items: center;justify-content: center;padding: 10px 10px 20px 10px;}
.pop-content p{font-size: 13px;color: #333;}
.pop-button{display: flex;align-items: center;justify-content: space-between;}
.pop-button button{border: 0px;width: 88px;height: 28px;font-size: 13px;border-radius: 2px;color: #333333;background: #e6e6e6;cursor: pointer;}
.pop-button .ok{background: #f0ad4e;color: #FFFFFF;}
/*弹出询问提示框 */


/*msg 消息框 */
.mask-transparent{width: 100vw;height: 100vh;position: fixed;z-index: 99;background: rgba(0, 0, 0, 0);top: 0;left: 0; display: flex;align-items: center;justify-content: center;}
.msg-content{padding: 5px 10px;background: rgba(0, 0, 0, 0.5);color: white;border: 0px;border-radius: 3px;font-size: 15px;}
/*msg 消息框 */


/*load 加载框 */
.load-content{padding: 16px 16px;background: rgba(0, 0, 0, 0.5);color: white;border: 0px;border-radius: 3px;font-size: 15px;display: flex;flex-direction: column;align-items: center;justify-content: center;}
.load-ioc{width: 30px;height: 30px;animation: myRotate 2s infinite linear;}
@keyframes myRotate { from {transform: rotate(0deg);} to {transform: rotate(359deg);} }
/*load 加载框 */


/*lookImg 查看大图 */
.lookImgBox{width: 100vw;height: 100vh;display: flex;justify-content: center;align-items: center;}
.lookImg{max-width: 100%;max-height: 100%;}
/*lookImg 查看大图  */



